13. Quiz: String Equality for All (2-4)

Directions:

Fix the right side expression so it evaluates to true.

"ALL Strings are CrEaTeD equal" == "All STRINGS are CrEaTED Equal"

Your Code:

Start Quiz:

/*
 * Programming Quiz: String Equality for All (2-4)
 */

// fix the right side of the expression
var answer = "ALL Strings are CrEaTeD equal" == "All STRINGS are CrEaTED Equal";
console.log(answer);

INSTRUCTOR NOTE:

Have questions? Head to Knowledge for discussion with the Udacity Community.